Socket
Socket
Sign inDemoInstall

exponential-backoff

Package Overview
Dependencies
Maintainers
16
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exponential-backoff

A utility that allows retrying a function with an exponential delay between attempts.


Version published
Weekly downloads
9.4M
increased by6.21%
Maintainers
16
Weekly downloads
 
Created

What is exponential-backoff?

The exponential-backoff npm package is a utility that helps to perform an action repeatedly with a delay between each attempt that grows exponentially. It is commonly used to handle retries for operations that can fail due to transient errors, such as network requests or other temporary issues. The package provides a way to easily implement backoff strategies in a robust and flexible manner.

What are exponential-backoff's main functionalities?

Exponential backoff for asynchronous operations

This feature allows you to perform an asynchronous operation with an exponential backoff strategy. If the operation fails, it will be retried with increasing delays between each attempt.

const { backOff } = require('exponential-backoff');

backOff(() => {
  return new Promise((resolve, reject) => {
    // Your async operation here, e.g., a fetch request
    if (/* operation successful */) {
      resolve(result);
    } else {
      reject('Failed to complete operation');
    }
  });
});

Customizable backoff strategy

This feature allows you to customize the backoff strategy by setting options such as the number of attempts, the initial delay, and the multiplier for the delay between attempts.

const { backOff } = require('exponential-backoff');

const options = {
  delayFirstAttempt: true,
  numOfAttempts: 5,
  startingDelay: 100,
  timeMultiple: 2
};

backOff(() => {
  // Your async operation
}, options);

Handling of max delay

This feature allows you to specify a maximum delay between attempts, ensuring that the delay does not grow beyond a certain threshold.

const { backOff } = require('exponential-backoff');

const options = {
  maxDelay: 10000
};

backOff(() => {
  // Your async operation
}, options);

Other packages similar to exponential-backoff

Keywords

FAQs

Package last updated on 20 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc